home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Src Code / TEE4C.BPK < prev    next >
Encoding:
Text File  |  1998-10-24  |  5.1 KB  |  184 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = Tee4C.bpl
  17. OBJFILES = TeeProcs.obj TeeConst.obj TeCanvas.obj TeEngine.obj Chart.obj TeeFunci.obj \
  18.   Series.obj TeeShape.obj GanttCh.obj BubbleCh.obj ArrowCha.obj TeExport.obj \
  19.   Brushdlg.obj Pendlg.obj TeeAbout.obj TeePrevi.obj Tee4C.obj
  20. RESFILES = tee4C.res
  21. DEFFILE =
  22. RESDEPEN = $(RESFILES) TeExport.dfm Brushdlg.dfm Pendlg.dfm TeeAbout.dfm TeePrevi.dfm
  23. LIBFILES =
  24. LIBRARIES = ibsmp35.lib
  25. SPARELIBS = VCL35.lib ibsmp35.lib
  26. DEFFILE =
  27. PACKAGES = vcl35.bpi
  28. # ---------------------------------------------------------------------------
  29. PATHCPP = .;
  30. PATHASM = .;
  31. PATHPAS = .;
  32. PATHRC = .;
  33. DEBUGLIBPATH = $(BCB)\lib\debug
  34. RELEASELIBPATH = $(BCB)\lib\release
  35. # ---------------------------------------------------------------------------
  36. CFLAG1 = -Od -Hc -w -Ve -r- -k -y -v -vi- -c -b- -w-par -w-inl -Vx -tW
  37. CFLAG2 = -D_RTLDLL;USEPACKAGES -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm
  38. CFLAG3 =
  39. PFLAGS = -D_RTLDLL;USEPACKAGES -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  40.   -I$(BCB)\include;$(BCB)\include\vcl -H -W -$Y -$W -v -JPHN -M
  41. RFLAGS = -D_RTLDLL;USEPACKAGES -i$(BCB)\include;$(BCB)\include\vcl
  42. AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /d_RTLDLL /dUSEPACKAGES /mx /w2 /zi
  43. LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -D"TeeChart 4.0 Components" -aa \
  44.   -Tpp -Gpr -s -Gl -Gi -w -v
  45. IFLAGS = -Gn
  46. # ---------------------------------------------------------------------------
  47. ALLOBJ = c0pkg32.obj $(PACKAGES) sysinit.obj $(OBJFILES)
  48. ALLRES = $(RESFILES)
  49. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
  50. # ---------------------------------------------------------------------------
  51. !ifdef IDEOPTIONS
  52.  
  53. [Version Info]
  54. IncludeVerInfo=1
  55. AutoIncBuild=0
  56. MajorVer=4
  57. MinorVer=0
  58. Release=0
  59. Build=0
  60. Debug=0
  61. PreRelease=0
  62. Special=0
  63. Private=0
  64. DLL=1
  65. Locale=1033
  66. CodePage=1252
  67.  
  68. [Version Info Keys]
  69. CompanyName=teeMach SL
  70. FileDescription=TeeChart Component Package
  71. FileVersion=4.0.0.0
  72. InternalName=TEE4C
  73. LegalCopyright=Copyright ⌐ David Berneda 1995-98
  74. LegalTrademarks=
  75. OriginalFilename=TEE4C.DPL
  76. ProductName=Borland Delphi and C++ Builder
  77. ProductVersion=4.0
  78. Comments=
  79.  
  80. [Excluded Packages]
  81. E:\bcb3\Bin\dclteep3.bpl=TeeChart Pro 4.0 Components
  82. E:\bcb3\Bin\dcltee35.bpl=TeeChart 4.0 Components
  83. e:\bcb3\Bin\dcldss35.bpl=Borland Decision Cube Components
  84.  
  85. [HistoryLists\hlIncludePath]
  86. Count=1
  87. Item0=$(BCB)\include;$(BCB)\include\vcl
  88.  
  89. [HistoryLists\hlLibraryPath]
  90. Count=1
  91. Item0=$(BCB)\lib\obj;$(BCB)\lib
  92.  
  93. [HistoryLists\hlDebugSourcePath]
  94. Count=1
  95. Item0=$(BCB)\source\vcl
  96.  
  97. [HistoryLists\hlConditionals]
  98. Count=1
  99. Item0=_RTLDLL;USEPACKAGES
  100.  
  101. [Debugging]
  102. DebugSourceDirs=
  103.  
  104. [Parameters]
  105. RunParams=
  106. HostApplication=
  107.  
  108. !endif
  109.  
  110. # ---------------------------------------------------------------------------
  111. # MAKE SECTION
  112. # ---------------------------------------------------------------------------
  113. # This section of the project file is not used by the BCB IDE.  It is for
  114. # the benefit of building from the command-line using the MAKE utility.
  115. # ---------------------------------------------------------------------------
  116.  
  117. .autodepend
  118. # ---------------------------------------------------------------------------
  119. !if !$d(BCC32)
  120. BCC32 = bcc32
  121. !endif
  122.  
  123. !if !$d(DCC32)
  124. DCC32 = dcc32
  125. !endif
  126.  
  127. !if !$d(TASM32)
  128. TASM32 = tasm32
  129. !endif
  130.  
  131. !if !$d(LINKER)
  132. LINKER = ilink32
  133. !endif
  134.  
  135. !if !$d(BRCC32)
  136. BRCC32 = brcc32
  137. !endif
  138. # ---------------------------------------------------------------------------
  139. !if $d(PATHCPP)
  140. .PATH.CPP = $(PATHCPP)
  141. .PATH.C   = $(PATHCPP)
  142. !endif
  143.  
  144. !if $d(PATHPAS)
  145. .PATH.PAS = $(PATHPAS)
  146. !endif
  147.  
  148. !if $d(PATHASM)
  149. .PATH.ASM = $(PATHASM)
  150. !endif
  151.  
  152. !if $d(PATHRC)
  153. .PATH.RC  = $(PATHRC)
  154. !endif
  155. # ---------------------------------------------------------------------------
  156. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  157.     $(BCB)\BIN\$(LINKER) @&&!
  158.     $(LFLAGS) $(IFLAGS) +
  159.     $(ALLOBJ), +
  160.     $(PROJECT),, +
  161.     $(ALLLIB), +
  162.     $(DEFFILE), +
  163.     $(ALLRES)
  164. !
  165. # ---------------------------------------------------------------------------
  166. .pas.hpp:
  167.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  168.  
  169. .pas.obj:
  170.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  171.  
  172. .cpp.obj:
  173.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  174.  
  175. .c.obj:
  176.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  177.  
  178. .asm.obj:
  179.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  180.  
  181. .rc.res:
  182.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  183. # ---------------------------------------------------------------------------
  184.